LANCommander/LANCommander.Server.ImportExport/Legacy/Models/KeyedModel.cs

6 lines
144 B
C#
Raw Permalink Normal View History

namespace LANCommander.Server.ImportExport.Legacy.Models;
internal abstract class KeyedModel : IKeyedModel
{
public Guid Id { get; set; }
}