7 lines
166 B
C#
7 lines
166 B
C#
namespace CompanyManagment.App.Contracts.Percentage;
|
|
|
|
public class PercentageViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public double Percent { get; set; }
|
|
} |