LANCommander/LANCommander.SDK/Models/KeyedModel.cs

10 lines
156 B
C#
Raw Permalink Normal View History

using System;
namespace LANCommander.SDK.Models
{
2024-08-18 15:05:25 -05:00
public abstract class KeyedModel : IKeyedModel
{
public Guid Id { get; set; }
}
}