7 lines
190 B
C#
7 lines
190 B
C#
|
|
namespace Netina.Domain.MartenEntities.Settings;
|
|||
|
|
|
|||
|
|
public class MarketerSetting
|
|||
|
|
{
|
|||
|
|
public int ProfitPercent { get; set; }
|
|||
|
|
public string ContractTerms { get; set; } = string.Empty;
|
|||
|
|
}
|