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