using System;
using System.Collections.Generic;
namespace Workbench.Entity
{
public partial class Country
{
///
/// Country primary key
///
public long Id { get; set; }
///
/// Country code. Main key to search.
///
public string Code { get; set; } = null!;
///
/// Country name. Informational value.
///
public string Name { get; set; } = null!;
///
/// Percentage VAT definition
///
public int Vat { get; set; }
///
/// Record created timestamp
///
public DateTime Created { get; set; }
///
/// Record modified timestamp
///
public DateTime? Modified { get; set; }
///
/// Record modifier signature
///
public string? Modifier { get; set; }
///
/// Default country currency
///
public long DefaultCurrencyId { get; set; }
public virtual Currency DefaultCurrency { get; set; } = null!;
}
}