14 lines
313 B
C#
14 lines
313 B
C#
|
using System;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
using FluentNHibernate.Mapping;
|
|||
|
using Tanshu.Accounts.Entities;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public class ProductDisplay : Product
|
|||
|
{
|
|||
|
public virtual decimal Price { get; set; }
|
|||
|
public virtual string Group { get; set; }
|
|||
|
}
|
|||
|
}
|