mirror of
https://github.com/tuxdotrs/highminded.git
synced 2025-08-23 08:01:03 +05:30
9 lines
244 B
C#
9 lines
244 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace highminded.models;
|
|
|
|
public partial class ChatViewModel : ObservableObject
|
|
{
|
|
[ObservableProperty] private string _content = "";
|
|
[ObservableProperty] private string _prompt = "";
|
|
} |