BlazorApp/Bullet6/Interfaces/IEntity.cs

8 lines
111 B
C#

namespace Bullet6.Interfaces
{
public interface IEntity
{
string Name { get; set; }
}
}