2024-04-18 19:19:54 +03:30
|
|
|
|
namespace Netina.Domain.MartenEntities.Settings;
|
|
|
|
|
|
|
|
|
|
|
|
public class MarketerSetting
|
|
|
|
|
|
{
|
|
|
|
|
|
public int ProfitPercent { get; set; }
|
|
|
|
|
|
public string ContractTerms { get; set; } = string.Empty;
|
2024-04-25 02:47:50 +03:30
|
|
|
|
public int DiscountPercent { get; set; }
|
2024-04-18 19:19:54 +03:30
|
|
|
|
}
|