9 lines
202 B
C#
9 lines
202 B
C#
namespace CompanyManagment.App.Contracts.FineSubject;
|
|
|
|
public class FineSubjectViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string Subject { get; set; }
|
|
public string Amount { get; set; }
|
|
|
|
} |