Generator Changes at 11/16/2025 1:09:06 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-16 01:10:12 +03:30
parent 2bc40db528
commit e0d97199af
3 changed files with 13 additions and 1 deletions

View File

@@ -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; }
}

View File

@@ -0,0 +1,7 @@
namespace CMSMicroservice.Domain.Enums;
//قراردادها
public enum ContractType
{
Main = 0,
CMS = 1,
}

View File

@@ -44,3 +44,8 @@ enum TransactionType
DepositExternal1 = 2;
Withdraw = 3;
}
enum ContractType
{
Main = 0;
CMS = 1;
}