Generator Changes at 11/16/2025 1:09:06 AM +03:30
This commit is contained in:
@@ -9,7 +9,7 @@ public class Contract : BaseAuditableEntity
|
||||
//متن قرارداد
|
||||
public string HtmlContent { get; set; }
|
||||
//نوع قرارداد
|
||||
public UnknownEnumType Type { get; set; }
|
||||
public ContractType Type { get; set; }
|
||||
//UserContract Collection Navigation Reference
|
||||
public virtual ICollection<UserContract> UserContracts { get; set; }
|
||||
}
|
||||
|
||||
7
src/CMSMicroservice.Domain/Enums/ContractType.cs
Normal file
7
src/CMSMicroservice.Domain/Enums/ContractType.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace CMSMicroservice.Domain.Enums;
|
||||
//قراردادها
|
||||
public enum ContractType
|
||||
{
|
||||
Main = 0,
|
||||
CMS = 1,
|
||||
}
|
||||
@@ -44,3 +44,8 @@ enum TransactionType
|
||||
DepositExternal1 = 2;
|
||||
Withdraw = 3;
|
||||
}
|
||||
enum ContractType
|
||||
{
|
||||
Main = 0;
|
||||
CMS = 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user