12 lines
243 B
C#
12 lines
243 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Entities
|
|||
|
{
|
|||
|
public class MachineLocation
|
|||
|
{
|
|||
|
public Guid MachineLocationID { get; set; }
|
|||
|
public string Machine { get; set; }
|
|||
|
public string Location { get; set; }
|
|||
|
}
|
|||
|
}
|