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.
14 lines
336 B
14 lines
336 B
using Connected.Data;
|
|
|
|
namespace 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;
|
|
}
|