mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
12 lines
252 B
C#
12 lines
252 B
C#
using System.Collections.Generic;
|
|
using Marechai.ViewModels;
|
|
|
|
namespace Marechai.Pages.Home
|
|
{
|
|
public partial class Index
|
|
{
|
|
List<NewsViewModel> _news;
|
|
|
|
protected override void OnInitialized() => _news = Service.GetNews();
|
|
}
|
|
} |