Skip to content

Commit

Permalink
Merge pull request #2 from aloslider/dev
Browse files Browse the repository at this point in the history
Add prop str
  • Loading branch information
aloslider authored May 19, 2024
2 parents 08d589d + 4fa6ee2 commit 04f68a5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ClassLibrary/Class1.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
namespace ClassLibrary;
namespace ClassLibrary;

public class Class1
{
public int MyProperty { get; set; }

public string Name { get; set; }

Check warning on line 7 in ClassLibrary/Class1.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'Name' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

Check warning on line 7 in ClassLibrary/Class1.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'Name' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

public int MyProperty2 { get; set; }
}

0 comments on commit 04f68a5

Please sign in to comment.