BlazorApp/Bullet6/Solution1/Models/IEntity.cs

8 lines
117 B
C#

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