Skip to content

Commit

Permalink
Merge pull request #31 from Ali-YousefiTelori/develop
Browse files Browse the repository at this point in the history
add LanguageContract
  • Loading branch information
Ali-YousefiTelori authored Dec 14, 2023
2 parents 9e92f1b + 9323d67 commit c866b5c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/nuget-push-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
5.0.x
6.0.x
7.0.x
8.0.x
env:
DOTNET_INSTALL_DIR: /usr/share/dotnet
- name: Restore dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
namespace EasyMicroservices.Domain.Contracts.Common;
/// <summary>
/// language contract
/// </summary>
public class LanguageContract
{
/// <summary>
/// Language short name like : fa-IR, en-US
/// </summary>
public string ShortName { get; set; }
/// <summary>
/// value of language
/// </summary>
public string Value { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.6</Version>
<Version>0.0.0.7</Version>
<Description>Domain of programming.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>utility,utilities,domain,domains,models,schemas,contracts</PackageTags>
Expand Down

0 comments on commit c866b5c

Please sign in to comment.