Files
Progrart/Progrart.Core/ProjectSystem/Project.cs

18 lines
236 B
C#
Raw Normal View History

2025-12-14 00:25:51 +11:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Progrart.Core.ProjectSystem
{
[Serializable]
public class Project
{
}
[Serializable]
public class BuildConfiguration
{
public string? Name;
}
}