Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
d1820 committed Jan 20, 2024
1 parent ceb5c24 commit 189bdd0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 0 additions & 12 deletions Sample/SampleProject/BaseClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,5 @@ namespace Sample
{
public class BaseClass : IBaseClass
{
public string FullPropertyAlt
{
get
{
return _fullProperty;
}
set
{
_fullProperty = value;
}
}
public int MyProperty { get; set; }
}
}
12 changes: 12 additions & 0 deletions Sample/SampleProject/MyClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ public string FullProperty
get => _fullProperty;
set => _fullProperty = value;
}
public string FullPropertyAlt
{
get
{
return _fullProperty;
}
set
{
_fullProperty = value;
}
}
public int MyProperty { get; set; }
public async Task<int> GetNewIdAsync<TNewType>(string name,
string address,
string city,
Expand Down

0 comments on commit 189bdd0

Please sign in to comment.