10 lines
283 B
C#
10 lines
283 B
C#
namespace FinlyticAssets.Entities;
|
|
|
|
public class TagEntity
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
|
|
public List<AssetEntity> Assets { get; set; } = new();
|
|
} |