14 lines
383 B
C#
14 lines
383 B
C#
namespace MyOffice.Web.Models.Motion
|
|
{
|
|
public class MotionViewModel: BaseViewModel
|
|
{
|
|
public string Id { get; set; } = null!;
|
|
public DateTime Date { get; set; }
|
|
public string AccountId { get; set; } = null!;
|
|
public string Item { get; set; } = null!;
|
|
public string? Description { get; set; }
|
|
public decimal Plus { get; set; }
|
|
public decimal Minus { get; set; }
|
|
}
|
|
}
|