13 lines
358 B
C#
13 lines
358 B
C#
using System;
|
|
|
|
namespace AvaloniaApplication14_Inventory_300326.Models.Models;
|
|
|
|
public class Equipment : DBObj
|
|
{
|
|
public string InvNumber { get; set; }
|
|
public string Name { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public decimal Cost { get; set; }
|
|
public bool IsWrittenOff {get; set;}
|
|
public int CurrentEmployeeId { get; set; }
|
|
} |