Added first app template

This commit is contained in:
2022-02-20 13:43:25 +01:00
commit 87ec17d056
239 changed files with 45714 additions and 0 deletions
@@ -0,0 +1,11 @@
namespace app.Share.Common
{
public class AuthUserSelectCriterion : SelectCriterion
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string EMail { get; set; }
public int? AuthRole { get; set; }
}
}
@@ -0,0 +1,8 @@
using System;
namespace app.Share.Common
{
public class DomainSelectCriterion : SelectCriterion
{
public string Name { get; set; }
}
}
@@ -0,0 +1,11 @@
using System;
namespace app.Share.Common
{
public class HostSelectCriterion : SelectCriterion
{
public string Name { get; set; }
public int[] IPAddress { get; set; }
public string DomainName { get; set; }
public string OSName { get; set; }
}
}
@@ -0,0 +1,11 @@
using System;
namespace app.Share.Common
{
public class LoginSelectCriterion : SelectCriterion
{
public DateTimeOffset? TimeFrom { get; set; }
public DateTimeOffset? TimeTo { get; set; }
public string HostName { get; set; }
public string UserName { get; set; }
}
}
@@ -0,0 +1,10 @@
namespace app.Share.Common
{
public class SelectCriterion
{
public int PageIndex { get; set; }
public int PageSize { get; set; }
public string SortDirection { get; set; }
public string SortColumn { get; set; }
}
}
@@ -0,0 +1,10 @@
using System;
namespace app.Share.Common
{
public class UserSelectCriterion : SelectCriterion
{
public string Name { get; set; }
public string DomainName { get; set; }
public string HostName { get; set; }
}
}
@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\app.Share.Common.Interface\app.Share.Common.Interface.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
</Project>