zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Domain/Aggregates/ResourceGroupAggregate/ResourceDescriptor.cs

13 lines
318 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Domain.Aggregates.ResourceGroupAggregate
{
public partial record ResourceDescriptor
{
[AllowNull]
public string ResourceType { get; set; }
[AllowNull]
public string ResourceId { get; set; }
}
}