13 lines
318 B
C#
13 lines
318 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|