narsil/Tanshu.Accounts.Contracts/Data Contracts/MachineLocation.cs

12 lines
243 B
C#
Raw Permalink Normal View History

2018-08-24 10:41:33 +00:00
using System;
namespace Tanshu.Accounts.Entities
{
public class MachineLocation
{
public Guid MachineLocationID { get; set; }
public string Machine { get; set; }
public string Location { get; set; }
}
}