zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Models/Tenants/TenantCreateOrUpdateRequestModel.cs

15 lines
330 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Application.Models.Tenants
{
public class TenantCreateOrUpdateRequestModel
{
public Guid Id { get; set; }
[AllowNull]
public string Name { get; set; }
public DateTimeOffset CreationTime { get; set; }
}
}