14 lines
325 B
C#
14 lines
325 B
C#
|
using System;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public class PrintLocationBO
|
|||
|
{
|
|||
|
public int PrintLocationID { get; set; }
|
|||
|
public Guid ProductTypeID { get; set; }
|
|||
|
public string Location { get; set; }
|
|||
|
public string Printer { get; set; }
|
|||
|
}
|
|||
|
}
|