LANCommander/LANCommander.SDK/Models/Manifest/IKeyedModel.cs

8 lines
125 B
C#
Raw Permalink Normal View History

using System;
namespace LANCommander.SDK.Models.Manifest;
public interface IKeyedModel
{
public Guid Id { get; set; }
}