You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Common.Types/Connected.Common.Types.Client/TaxRates/TaxRate.cs

14 lines
346 B

using Connected.Data;
namespace Connected.Common.Types.TaxRates;
/// <summary>
/// This is the client implementation if the <see cref="ITaxRate"/>.
/// </summary>
public class TaxRate : PrimaryKey<int>, ITaxRate
{
public string? Name { get; init; }
public float Rate { get; init; }
public Status Status { get; init; } = Status.Enabled;
}