2023-02-15 22:50:38 +08:00

17 lines
396 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Milimoe.FunGame.Core.Interface.Entity
{
public interface IBaseEntity : IEquatable<IBaseEntity>, IEnumerable<IBaseEntity>
{
public int Id { get; }
public Guid Guid { get; }
public string Name { get; }
}
}