This commit is contained in:
2024-10-28 15:48:18 +01:00
parent 9445cdf28a
commit 4b78dfd717
27 changed files with 258 additions and 241 deletions

View File

@@ -13,13 +13,17 @@ namespace BS.Shared.DataContracts
[DataContract]
public abstract class AppRequestDC : IDataContract
{
[DataMember] public string Tenant { get; set; }
[DataMember] public RequestType Type { get; set; }
public AppRequestDC(RequestType type, string tenant)
public AppRequestDC(RequestType type)
{
Type = type;
}
public AppRequestDC(RequestType type, string tenant) : this(type)
{
Tenant = tenant;
}
[DataMember] public string Tenant { get; set; }
[DataMember] public RequestType Type { get; set; }
}
}