zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Models/Tenants/TenantGetResponseModel.cs
2023-12-05 17:22:48 +08:00

12 lines
261 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Application.Models.Tenants
{
public class TenantGetResponseModel
{
public Guid Id { get; set; }
[AllowNull]
public string Name { get; set; }
}
}