23
This commit is contained in:
27
MyCode.Project.Domain/Message/Request/User/ServiceItems.cs
Normal file
27
MyCode.Project.Domain/Message/Request/User/ServiceItems.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Request.User
|
||||
{
|
||||
public class ServiceItems
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务ID
|
||||
/// </summary>
|
||||
public Guid Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务名称
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public int Qty { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user