Skip to content

Commit 8b8012c

Browse files
committed
Make BaseView abstract.
1 parent 179aa18 commit 8b8012c

File tree

1 file changed

+1
-1
lines changed
  • samples/Unity.Mvvm.Counter/Assets/Scripts/Views

1 file changed

+1
-1
lines changed

samples/Unity.Mvvm.Counter/Assets/Scripts/Views/BaseView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace Views
1010
{
11-
public class BaseView<TBindingContext> : DocumentView<TBindingContext>
11+
public abstract class BaseView<TBindingContext> : DocumentView<TBindingContext>
1212
where TBindingContext : class, INotifyPropertyChanged
1313
{
1414
[SerializeField] private AppContext _appContext;

0 commit comments

Comments
 (0)