mirror of
https://github.com/tuxdotrs/highminded.git
synced 2025-08-23 08:01:03 +05:30
refactor: cleaup and implemented mvvm
This commit is contained in:
9
models/ChatViewModel.cs
Normal file
9
models/ChatViewModel.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
|
||||
namespace highminded.models;
|
||||
|
||||
public partial class ChatViewModel : ObservableObject
|
||||
{
|
||||
[ObservableProperty] private string _content = "";
|
||||
[ObservableProperty] private string _prompt = "";
|
||||
}
|
Reference in New Issue
Block a user