2026-05-14 20:19:29 +08:00

10 lines
261 B
C#

namespace Oshima.FunGame.OshimaModules.BusinessSimulation.Interface
{
public interface IDescription
{
public string Description { get; }
public string GeneralDescription { get; }
public string BackgroundStory { get; }
}
}