add version 0.0.1
This commit is contained in:
18
ResourceString.Net.Logic/DomainObjects/Resx/Resource.cs
Normal file
18
ResourceString.Net.Logic/DomainObjects/Resx/Resource.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace ResourceString.Net.Logic.DomainObjects.Resx;
|
||||
|
||||
internal record Resource
|
||||
{
|
||||
public Resource(string name, string value)
|
||||
{
|
||||
Name = name ?? string.Empty;
|
||||
Value = value ?? string.Empty;
|
||||
}
|
||||
|
||||
public string Name { get;}
|
||||
|
||||
public Option<string> Type { get; init;}
|
||||
|
||||
public Option<string> Comment { get; init;}
|
||||
|
||||
public string Value { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user