7 lines
203 B
C#
7 lines
203 B
C#
namespace Beam.Temporary.Cli {
|
|
internal class File(string path, params string[] tags) {
|
|
public string Path { get; set; } = path;
|
|
public string[] Tags { get; set; } = tags;
|
|
}
|
|
}
|