namespace DataModel.ViewModels
{
///
/// View model for profit center
///
public class ProfitCenterViewModel
{
///
/// Profit center unique code
///
public string Code { get; set; }
///
/// Profit center description
///
public string Description { get; set; }
}
}